home *** CD-ROM | disk | FTP | other *** search
- program BMPview;
-
- uses
- Forms,
- Controls,
- Bmpview1 in 'BMPVIEW1.PAS' {Viewer},
- Fullscr in 'FULLSCR.PAS' {FullSlide};
-
- {$R *.RES}
-
- begin
- screen.cursor := crHourGlass;
- Application.Title := 'BMP Viewer';
- Application.CreateForm(TViewer, Viewer);
- Application.CreateForm(TFullSlide, FullSlide);
- screen.cursor := crDefault;
- Application.Run;
- end.
-